/* ═══════════════════════════════════════
   IPR WEBSITE — MAIN STYLESHEET
   Institute for Plasma Research
═══════════════════════════════════════ */

/* ── ROOT VARIABLES ── */
:root {
  --blue:        #13519e;
  --blue-dark:   #001a55;
  --blue-mid:    #0a4a87;
  --teal:        #006666;
  --orange:      #ef7a18;
  --orange-dark: #b84a00;
  --yellow:      #f5a623;
  --light-bg:    #e8f4f8;
  --dark-bg:     #001a3a;
  --gray-bg:     #f3f3fd;
  --border:      #cccccc;
  --text-dark:   #222222;
  --text-muted:  #555555;
  --white:       #ffffff;

  --orange:#ff7a00;
  --line:#dbe5ef;
  --bg:#f6f9fc;
  --text:#1f2937;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Nunito Sans', 'Segoe UI', Arial, sans-serif; }
a { text-decoration: none; transition: color 0.2s; }
img { max-width: 100%; }
.w-sz-100{ width:100px; }
.w-sz-120{ width:120px; }
.w-sz-150{ width:150px; }
.borderArea{ border:1px solid #b7b7b7; }
/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }


/* ══════════════════════════════════════
   1. GOV TOP BAR
══════════════════════════════════════ */
.download-btn {
    display: inline-block;
    padding: 4px 10px;
    font-size: 13px;
    background-color: #e9f5ff;
    color: #272727;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid #0056a6;
    transition: 0.3s ease;
}
.download-btn:hover {
    background: var(--orange);
    color: #fff;
}


.btn-01 {
    padding: 8px 12px;
    gap: 8px;
    outline: none;
    border-radius: 4px;
    color: #fff;
    background: var(--orange);
    border:0;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: .12px;
    display: inline-block;
    text-decoration: none;
}

.btn-01:hover{background: var(--blue);}

.btn-02 {
    padding: 12px 15px;
    gap: 8px;
    outline: none;
    border-radius: 4px;
    color: #fff;
    background: var(--orange);
    border:0;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: .12px;
    display: inline-block;
    text-decoration: none;
}

.btn-02:hover{background: var(--blue); color: #fff;}
.btn-03 {
    padding: 12px 15px;
    gap: 8px;
    outline: none;
    border-radius: 4px;
    color: #fff;
    background: #000;
    border:0;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: .12px;
    display: inline-block;
    text-decoration: none;
}

.btn-03:hover{background: var(--blue);}

.btn-04 {
    padding: 8px 12px;
    gap: 8px;
    outline: none;
    border-radius: 4px;
    color: #fff;
    background: var(--blue);
   
    border:0;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: .12px;
    display: inline-block;
    text-decoration: none;
}

.btn-04:hover{ background: var(--orange);}

.gov-bar {
  background: var(--gray-bg);
  /* border-bottom: 1px solid var(--border); */
  padding: 2px 16px;
  font-size: 12px;
}
.gov-bar-inner {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-wrap: wrap;
  gap: 6px;
}
.gov-bar-left { display: flex; align-items: center; gap: 3px; flex-wrap: wrap; }
.gov-bar-right { display: flex; align-items: center; gap: 6px; }

.acc-btn {
  width: 25px;
  height: 25px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-dark);
  padding: 0;
  line-height: 1;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.acc-btn i { font-size: 12px; pointer-events: none; }
.acc-btn:hover, .acc-btn.active { background: var(--blue); color: var(--white); border-color: var(--blue); }
.acc-btn.font-sm { font-size: 13px; font-weight: 700; font-family: serif; }
.acc-btn.font-md { font-size: 13px; font-weight: 700; font-family: serif; }
.acc-btn.font-lg { font-size: 13px; font-weight: 700; font-family: serif; }
.acc-btn.c-white { background: var(--white); color: #000; font-weight: 700; font-family: serif; }
.acc-btn.c-black { background: #000; color: var(--white); font-weight: 700; font-family: serif; }
.acc-btn.c-yellow { background: #ffff00; color: #000; font-weight: 700; font-family: serif; border: 1px solid #aaa; }
.acc-btn.c-white:hover, .acc-btn.c-black:hover, .acc-btn.c-yellow:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

.gb-divider { width: 1px; height: 26px; background: #423282; margin: 0 4px; flex-shrink: 0; 
    left: 3px;
    position: relative;

}

.lang-btn {
  background: none; border: none; cursor: pointer;
  font-size: 13px; font-weight: 600; color: var(--blue);
  padding: 0 3px; transition: color 0.15s;
  font-family: 'Noto Sans Devanagari', 'Mangal', Arial, sans-serif;
}
.lang-btn:hover { color: var(--orange); text-decoration: underline; }

.intra-btn {
  background: none; border: 1px solid var(--blue); border-radius: 3px;
  cursor: pointer; font-size: 12px; font-weight: 600;
  color: var(--blue); padding: 3px 10px; transition: background 0.15s, color 0.15s;
}
.intra-btn:hover { background: var(--blue); color: var(--white); }

/* Contrast modes */
body.contrast-high { background: #000 !important; color: #fff !important; }
body.contrast-high .gov-bar { background: #111; border-color: #444; }
body.contrast-yb { background: #ffff00 !important; color: #000 !important; }
body.contrast-yb .gov-bar { background: #eeee00; }


/* ══════════════════════════════════════
   2. SITE HEADER
══════════════════════════════════════ */
.gov-bar-left svg {
    fill: #20104e;
  width: 29px;
}
.site-header {
  background: var(--white);
  padding:0;
  border-bottom: 0px solid var(--blue);
}
 
.site-header .logo { width: 130px; text-align:right; }
.site-header .logo img{ width:100%; max-width:125px; }

.site-header .pssiLogoArea { width:130px;  }
.site-header .pssiLogoArea img{width:100%; max-width:93px; }

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-header .header-top-area{ border-bottom:1px solid #d4d4d4; padding:5px 0; }
.site-header  .header-top-area  ul {
    list-style: none;
    color: #1b1b1b;
}


.site-header  .header-top-area  ul li {
    padding: 0 3px;
}

.site-header  .header-top-area  ul li svg {
    fill: #20104e;
}

.site-header  .header-top-area ul li {
    border-right: 1px solid #878787;
}
.site-header  .header-top-area ul li {
    border-right: 1px solid #878787;
}
.site-header  .header-top-area ul li:last-child {
    border: 0;
}

.logo-wrap { display: flex; align-items: center; gap: 14px; padding: 6px 0;}
.logo-wrap img { height: 72px; width: auto; object-fit: contain; }
.logo-text-hindi { font-size: 1.05rem; color: var(--blue); font-weight: 700; line-height: 1.3; font-family: 'Noto Sans Devanagari', serif; }
.logo-text-eng   { font-size: 1.05rem; color: var(--orange); font-weight: 700; line-height: 1.3; }
.logo-sub        { font-size: 11px; color: var(--text-muted); line-height: 1.4; margin-top: 2px; }

.header-right { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.social-icons a { color: var(--blue); font-size: 17px; margin: 0 3px; display: inline-flex; }
.social-icons a:hover { color: var(--orange); }

.site-header .companyNameArea{text-align:center;}

.site-header .companyNameArea h2{ color:#ef7a18; font-size:29px; font-weight:600; position:relative; margin: 0; padding: 0; margin-bottom:5px; }
.site-header .companyNameArea h2 span{ display:block; color:#173c69; font-size:26px; font-weight:700; }
/*.site-header .companyNameArea h2:after{ width:100px; height:2px; background:#ef7a18; position:absolute; left:50%; bottom:0; transform:translateX(-50%); content: '';}*/
.site-header .companyNameArea h3{  color:#000; font-size:17px; font-weight:500; margin: 0; padding: 0;}
.site-header .companyNameArea h3 span{ display:block;  color:#000; font-size:17px; font-weight:500;}

.yr-badge {
  width: 54px; height: 54px; background: var(--blue); border-radius: 50%;
  color: var(--white); display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; line-height: 1.2; flex-shrink: 0;
}
.yr-badge span { font-size: 19px; font-weight: 900; line-height: 1; }

.brics-badge {
  /* background: var(--white); border: 2px solid var(--blue); */
  /* border-radius: 6px; padding: 4px 8px;  */text-align: center; display: flex;
}
.brics-badge .b1 { font-size: 9px; font-weight: 700; color: var(--blue); display: block; margin-right: 33px;}
.brics-badge .b2 { font-size: 8px; color: var(--text-muted); display: block; margin-right: 18px;}

.brics-badge img{width:73px;}
.btn-search-open {
  background: none; border: none; font-size: 20px;
  color: var(--blue); cursor: pointer; padding: 4px;
  transition: color 0.15s;
}
.btn-search-open:hover { color: var(--orange); }


/* ══════════════════════════════════════
   3. SEARCH OVERLAY
══════════════════════════════════════ */
.search-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 30, 80, 0.87);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.search-overlay.open { display: flex; }

.search-box {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 28px;
  width: 90%;
  max-width: 560px;
  position: relative;
}
.search-box h5 {
  color: var(--blue); font-size: 1.05rem; margin-bottom: 16px;
}
.search-input-wrap { display: flex; /* gap: 8px; */ gap: 0px;}
.search-input-wrap input {
  flex: 1; border: 1px solid #ccc; border-radius: 4px 0 0 4px;
  padding: 7px 13px; font-size: 14px; outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
  width: 230px;
}
.search-input-wrap input:focus { border-color: var(--orange); }
.search-input-wrap button {
        background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 0 12px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.15s;
}
ul.navbar-nav.align-items-lg-center {
    margin-left: 22px;
}
.navbar .nav-item.active > .nav-link {
    color: #fff !important;
    background-color:var(--orange);
    border-radius: 4px;
}

.navbar .dropdown-menu .dropdown-item.active {
    background-color:var(--orange);
    color: #fff;
}
/* .search-input-wrap button {
  background: var(--blue); color: var(--white); border: none;
  border-radius: 4px; padding: 0 18px; font-size: 15px; cursor: pointer;
  transition: background 0.15s;
} */
.search-input-wrap button:hover { background: var(--orange); }

.search-hints { font-size: 12px; color: var(--text-muted); margin-top: 10px; }
.search-hints a { color: var(--blue); margin: 0 4px; }
.search-hints a:hover { color: var(--orange); }

.btn-search-close {
  position: absolute; top: 10px; right: 14px;
  background: none; border: none; font-size: 22px;
  color: #888; cursor: pointer; line-height: 1;
}
.btn-search-close:hover { color: var(--orange); }


/* ══════════════════════════════════════
   4. MAIN NAVBAR
══════════════════════════════════════ */
.nav-employee {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: 3px;
  padding: 6px 14px !important;
  margin-right: 16px;
}
.nav-employee:hover { background: var(--orange-dark) !important; }


.nav-employee i {
  font-size: 13px;
  color: #fff; /* orange */
}
.main-nav {
  background: var(--blue);
  position: sticky; top: 0; z-index: 1000;
}
.main-nav .navbar-toggler { border-color: rgba(255,255,255,0.4); }
.main-nav .navbar-toggler-icon { filter: invert(1); }

.main-nav .nav-link {
  color: var(--white) !important;
  font-size: 15px; font-weight: 700;
  padding: 8px 13px !important;
  letter-spacing: 0.3px;
  transition: background 0.15s;
}
.main-nav .nav-link:hover,
.main-nav .nav-item.active > .nav-link { background: var(--orange); }

.main-nav .dropdown-menu {
  border: none; border-top: 3px solid var(--orange);
  border-radius: 0; min-width: 210px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  padding: 0px 0;
  
}
.main-nav .dropdown-item {
  font-size: 15px;
 padding: 5px 33px 5px 18px;
  color: #333;
  transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid #d5d8db;
}

.main-nav .dropdown-menu li:last-child .dropdown-item {
  border-bottom: none;
}
.main-nav .dropdown-item:hover { background: var(--light-bg); color: var(--blue); }

/*sub menu*/

@media (min-width: 1149px) {

.main-nav .dropdown-menu .dropdown-submenu{ position:relative; }
.main-nav .dropdown-menu .dropdown-submenu .dropdown-toggle::after {
    position: absolute;
    right: 0px;
    top: 5px;
    width: 20px;
    height: 20px;
    color: #000;
    display: block;
    margin: 0;
    vertical-align: ;
    font-family: 'Font Awesome 6 Pro';
    font-size: 16px;
    content: "\f105";
    border: 0;
}
.main-nav .dropdown-menu .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
}

.main-nav .dropdown-menu .dropdown-submenu:hover > .dropdown-menu {
    display: block;
}


}


/* ══════════════════════════════════════
   5. FLOATING SIDE ICONS
══════════════════════════════════════ */
.side-icons {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.side-icons.left  { left: 0; }
.side-icons.right { right: 0; }

/* ── EACH BUTTON ── */
.side-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 0;
  font-size: 12.5px;
  font-weight: 500;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  height: 40px;
  transition: width .3s ease, padding .3s ease, opacity .2s ease, background .2s ease;
  cursor: pointer;
  border: none;
  outline: none;
  position: relative;
}

/* ── LEFT side ── */
.side-icons.left .side-btn {
  flex-direction: row;
  justify-content: flex-end;
  width: 40px;
  padding: 0;
  border-radius: 0 4px 4px 0;
}

.side-icons.left .side-btn:hover {
  width: 220px;
}

.side-icons.left .side-btn .btn-label {
  flex: 1;
  padding: 0 10px 0 14px;
  opacity: 0;
  transition: opacity .2s ease .1s;
  text-align: left;
  line-height: 1.2;
  white-space: nowrap;
}

.side-icons.left .side-btn:hover .btn-label {
  opacity: 1;
}

.side-icons.left .side-btn .btn-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
  background: rgba(0,0,0,.15);
}

/* ── RIGHT side FIXED ── */
.side-icons.right .side-btn {
  flex-direction: row;
  justify-content: flex-start;
  width: 40px;
  padding: 0;
  border-radius: 4px 0 0 4px;
  margin-left: auto;
}

.side-icons.right .side-btn:hover {
  width: 220px;
}

.side-icons.right .side-btn .btn-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
  background: rgba(0,0,0,.15);
  order: 1;
}

.side-icons.right .side-btn .btn-label {
  flex: 1;
  padding: 0 14px 0 10px;
  opacity: 0;
  transition: opacity .2s ease .1s;
  text-align: left;
  line-height: 1.2;
  white-space: nowrap;
  order: 2;
}

.side-icons.right .side-btn:hover .btn-label {
  opacity: 1;
}

/* ── COLOUR VARIANTS ── */
.sb-blue  { background: var(--blue); }
.sb-blue:hover  { background: #004fa0; }

.sb-teal  { background: #0e8a7a; }
.sb-teal:hover  { background: #0fa896; }

.sb-green { background: #1a7a3c; }
.sb-green:hover { background: #21964a; }

.sb-orange { background: #c85000; }
.sb-orange:hover { background: #e05800; }

.sb-purple { background: #5a2d8a; }
.sb-purple:hover { background: #6e38a8; }

/* ── MOBILE ── */
@media (max-width: 575px) {
  .side-icons { display: none; }
}

/* ══════════════════════════════════════
   6. HERO BANNER
══════════════════════════════════════ */
.hero-carousel .carousel-item { height: 600px; overflow: hidden; position: relative; }
.hero-carousel .carousel-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;object-position: top;
}
.hero-caption {
  position: absolute; top: 0; right: 0; height: 100%; width: 44%;
  background: linear-gradient(135deg, rgba(0,26,85,0.72) 0%, rgba(0,51,153,0.62) 100%);
  display: flex; flex-direction: column; justify-content: center;
  padding: 40px 36px;
}
.hero-caption h2 { color: var(--white); font-size: 2.1rem; line-height: 1.25; margin-bottom: 10px; }
.hero-caption h2 strong { color: var(--yellow); }
.hero-caption p { color: #dde; font-size: 0.95rem; font-style: italic; margin: 0; }
.hero-caption .btn-hero {
    display: math;
    margin-top: 18px;
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 9px 11px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s;
    width: 172px;
    text-align: center;
}

.hero-caption .btn-hero:hover { background: var(--orange-dark); color: var(--white); }

.carousel-indicators [data-bs-target] {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.65); border: none;
}
.carousel-indicators .active { background: var(--white); }
.carousel-control-prev,
.carousel-control-next {
  width: 40px; height: 40px; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.4); border-radius: 50%; opacity: 0.85;
}
.carousel-control-prev { left: 67px; }
.carousel-control-next { right: 67px; }


/* ══════════════════════════════════════
   7. NEWS TICKER
══════════════════════════════════════ */
.news-ticker {
  background: var(--blue); color: var(--white);
  padding: 0px 0; font-size: 12.5px; overflow: hidden;
}
.ticker-inner { display: flex; align-items: center; padding-left:0px !important;}
.ticker-label {
  background: var(--orange); color: var(--white);
  padding: 11px 14px; font-weight: 700; font-size: 12px;
  white-space: nowrap; border-radius: 2px; margin-right: 10px; flex-shrink: 0;
}
.ticker-track { overflow: hidden; flex: 1; }
.ticker-move {
  display: inline-flex; gap: 40px;
  animation: tickerScroll 35s linear infinite;
  white-space: nowrap;
}
.ticker-move:hover { animation-play-state: paused; }
.ticker-move a { color: var(--white); text-decoration: none; }
.ticker-move a:hover { color: var(--yellow); }
.ticker-move .dot { color: var(--yellow); margin-right: 5px; font-size: 8px; }

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ══════════════════════════════════════
   8. QUICK ACCESS ICONS
══════════════════════════════════════ */
.quick-access { background: var(--white); padding: 40px 0; border-bottom: 1px solid #e0e0e0; }
.qa-item {
  display: flex; flex-direction: column; align-items: center;
  text-decoration: none; transition: transform 0.2s;
  gap: 6px;
}
.qa-item:hover { transform: translateY(-4px); }
.qa-icon {
  width: 150px; height: 150px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 33px; color: var(--white);
}
.qa-label {
  font-size: 14px; font-weight: 700; color: #333;
  text-align: center; line-height: 1.3; /* max-width: 80px; */
}
.qa-blue   { background: linear-gradient(135deg,#1565c0,#003399); }
.qa-green  { background: linear-gradient(135deg,#2e7d32,#1b5e20); }
.qa-orange { background: linear-gradient(135deg,#e65100,#f57c00); }
.qa-gold   { background: linear-gradient(135deg,#f9a825,#e65100); }
.qa-brown  { background: linear-gradient(135deg,#6d4c41,#4e342e); }
.qa-teal   { background: linear-gradient(135deg,#00695c,#004d40); }
.qa-red    { background: linear-gradient(135deg,#c62828,#880e4f); }


/* ══════════════════════════════════════
   9. ABOUT STRIP
══════════════════════════════════════ */
.about-strip {
  background: var(--blue); color: var(--white); padding: 28px 0;
}
.about-strip p { font-size: 14px; line-height: 1.6; margin: 0; text-align: justify;}
.about-strip img { border-radius: 6px; object-fit: cover; width: 100%; height: 250px; }


/* ══════════════════════════════════════
   10. SECTION HEADING
══════════════════════════════════════ */
.sec-title {
  font-size: 1.35rem; font-weight: 700;
  color: var(--blue); text-transform: uppercase;
  letter-spacing: 0.8px; text-align: center; margin-bottom: 6px;
}
.sec-bar { width: 50px; height: 3px; background: var(--orange); margin: 0 auto 28px; }


/* ══════════════════════════════════════
   11. ANNOUNCEMENTS
══════════════════════════════════════ */
.ann-section { background: #f9f9f9; padding: 50px 0; }
.ann-item {
  background: #3f4246; color: var(--white);
  border-radius: 3px; padding: 9px 13px;
  font-size: 14px; display: flex; align-items: center;
  gap: 8px; margin-bottom: 9px; text-decoration: none;
  transition: background 0.2s;
  font-weight:600;
}
.ann-item i { flex-shrink: 0; font-size: 13px; }
.ann-item:hover { background: var(--orange); color: var(--white); }

.google-map-btn{
  background:var(--blue);color:#fff;font-size:13px;padding:7px 16px;border-radius:5px
}

.google-map-btn:hover{
  background:#e05c00; color:#fff;
}

.emp-card:hover {
    box-shadow: 0 4px 14px rgba(0,60,120,.12);
    color: var(--ipr-blue);
}
.emp-card {
    border: 1px solid #e0e8f4;
    border-radius: 8px;
    padding: 14px;
    text-align: center;
    text-decoration: none;
    color: var(--ipr-blue);
    transition: box-shadow .2s;
    display: block;
}
.emp-card i {
    font-size: 26px;
    color: var(--ipr-mid);
    display: block;
    margin-bottom: 6px;
}

.emp-card span {
    font-size: 12.5px;
    font-weight: 500;
}
/* ══════════════════════════════════════
   12. LATEST NEWS
══════════════════════════════════════ */
.news-section { background: var(--light-bg); padding: 50px 0; }
.news-card {
  background: var(--white); border-radius: 5px;
  padding: 14px; height: 100%;
  border: 1px solid #dde;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.news-card:hover { box-shadow: 0 3px 12px rgba(0,51,153,0.12); border-color: var(--teal); }
.nd-badge {
  background: var(--teal); color: var(--white);
  display: inline-block; text-align: center;
  padding: 3px 10px; border-radius: 3px;
  font-size: 11px; font-weight: 700; margin-bottom: 8px; min-width: 50px;
}
.nd-badge span { display: block; font-size: 20px; line-height: 1; }
.news-card h6 { font-size: 14px; color: var(--blue); line-height: 1.55; margin: 0; }


/* ══════════════════════════════════════
   13. CAMPUS + ADMISSIONS
══════════════════════════════════════ */
.campus-section { background: var(--dark-bg); color: var(--white); padding: 50px 0; }
.campus-section h4 { color: var(--white); font-size: 25px; margin-bottom: 12px; }
.campus-section p  { font-size: 14px; line-height: 1.85; color: #ccd; text-align: justify;}
.campus-img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; border-radius: 5px; }
.admissions-box {
  background: var(--blue); border-radius: 6px;
  padding: 24px 18px; text-align: center; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
}
.admissions-box h5   { color: var(--yellow); font-size: 1.05rem; margin-bottom: 8px; }
.admissions-box p    { font-size: 14px; color: #cce; }
.admissions-box .btn-join {
  background: var(--orange); border: none; color: var(--white);
  padding: 8px 22px; border-radius: 3px; font-size: 18px;
  font-weight: 700; cursor: pointer; margin-top: 12px; transition: background 0.15s;
}
.admissions-box .btn-join:hover { background: var(--orange-dark); }


/* ══════════════════════════════════════
   14. RESEARCH SECTION
══════════════════════════════════════ */
.research-section { background: #efecfa; padding: 50px 0; }
.research-spotlight {
  border: 1px solid #dde; border-radius: 6px;
  padding: 14px 12px; background: var(--white);
}
.rs-header {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 14px;
}
.rs-title {
  font-size: 18px; font-weight: 700;
  color: var(--blue); display: flex; align-items: center; gap: 7px;
}
.rs-title::before {
  content: ''; display: inline-block;
  width: 14px; height: 14px;
  background: var(--orange); border-radius: 50%;
}
.rs-nav { display: flex; gap: 5px; }
/* .rs-nav button {
  background: var(--light-bg); border: 1px solid #ccc;
  width: 30px; height: 30px; border-radius: 3px;
  cursor: pointer; font-size: 12px; transition: background 0.15s, color 0.15s;
} */

.rs-nav button {
    width: 38px;
    height: 38px;
    border: 1px solid #d8d8d8;
    background: var(--white);
    color: #222;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}
.rs-nav button:hover, .rs-nav button:focus {
    background: #f47920;
    color: #fff;
    border-color: #f47920;
    outline: none;
}

/* .rs-nav button:hover { background: var(--blue); color: var(--white); border-color: var(--blue); } */

.research-slide { overflow: hidden; }
.research-track {
  display: flex; gap: 22px;
  transition: transform 0.4s ease;
}
.res-card {
  flex: 0 0 calc(33.333% - 10px);
/*  border: 1px solid #ececec;*/
   border-radius: 5px;
  overflow: hidden; 
  transition: box-shadow 0.2s;
}
.res-card:hover { box-shadow: 0 3px 10px rgba(0,0,0,0.12); }
.res-card img,
.personasSlider-01 .news-card-custom img { width: 100%; height: 229px; object-fit: cover; display: block; }
.res-card p {
    font-size: 16px;
    color: #111;
    line-height: 1.3;
    padding: 10px;
    margin: 0;
    font-weight: 600;
}


/* =========================================================
   NEWS SECTION
========================================================= */
.news-section-custom {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--white);
    padding: 14px 12px;
    border-radius: 6px;
  border: 1px solid #dde;
}

.news-header-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 10px;
}

.news-title-wrap-custom {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-icon-custom {
  width: 34px;
  height: 34px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.news-title-custom {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}

.news-nav-custom {
  display: flex;
  gap: 8px;
}

.news-nav-custom button {
  width: 38px;
  height: 38px;
  border: 1px solid #d8d8d8;
  background: var(--white);
  color: #222;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-nav-custom button:hover,
.news-nav-custom button:focus {
  background: #f47920;
  color: #fff;
  border-color: #f47920;
  outline: none;
}

/* Slider */
.news-slider-custom {
  overflow: hidden;
  width: 100%;
}

.news-track-custom {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* Card */
.news-card-custom {
 /* min-width: calc(33.333% - 14px);
  max-width: calc(33.333% - 14px);*/
  background: var(--white);
  border: 0px solid #ececec;
/*  overflow: hidden;*/
  transition: all 0.3s ease;
  border-radius: 5px;
}

/*.news-card-custom:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}*/

.news-card-custom img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  display: block;
}

.news-content-custom {
  padding:10px;
  padding-bottom: 0;
}

.news-date-custom {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--orange);
  margin-bottom: 12px;
  font-weight: 500;
}

.news-date-custom i {
  font-size: 13px;
}

.news-content-custom h3 {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  margin: 0;
}

.news-content-custom h3 a {
  color: #111;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-content-custom h3 a:hover,
.news-content-custom h3 a:focus {
  color: #f47920;
  outline: none;
}

.news-content-custom p {
    font-size: 16px;
    color: #111;
    line-height: 1.3;
    margin: 0;
    margin-bottom: 10px;
    font-weight: 600;
}

.arrowAction-01 .personasSlider-01.owl-carousel .owl-stage-outer,
.arrowAction-01 .personasSlider.owl-carousel .owl-stage-outer { margin-bottom:0px !important; }


/* Footer */
.news-footer-custom {
  margin-top: 18px;
  text-align: right;
}

.news-footer-custom a {
  font-size: 15px;
  font-weight: 600;
  color: #f47920;
  text-decoration: none;
}

.news-footer-custom a:hover,
.news-footer-custom a:focus {
  text-decoration: underline;
}

/* =========================================================
   RESPONSIVE
========================================================= */




@media (max-width: 991px) {


  .news-card-custom img {
    height: 200px;
  }
}

@media (max-width: 767px) {
   

  .news-title-custom {
    font-size: 24px;
  }

  .news-card-custom {
    min-width: 100%;
    max-width: 100%;
  }

  .news-card-custom img {
    height: 220px;
  }

  .news-content-custom h3 {
    font-size: 18px;
  }

  .news-footer-custom {
    text-align: left;
  }
}

.news-ticker { position:relative; }
.news-ticker marquee { margin-right:20px; }

 .news-ticker marquee a {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin-right: 100px;
}

.news-ticker  a.btnPs {
    width: 25px;
    height: 25px;
    line-height: 25px;
    color: #fff;
    border-radius: 50px;
    position: absolute;
    font-size: 18px;
    right: 0px;
    top: 9px;
    border-left: 1px solid #fff;
}

/* =========================================================
   NEWS SECTION end
========================================================= */

/* Latest news sidebar */
.ln-sidebar {
  border: 1px solid #dde; border-radius: 6px;
  background: var(--white); overflow: hidden; height: 100%;
}
.ln-header {
  background: var(--blue); color: var(--white);
  padding: 5px 14px; font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: space-between;
}
.ln-badge {
  background: var(--orange); color: var(--white);
  font-size: 10px; padding: 2px 8px; border-radius: 10px;
}
.ln-item {
  padding: 9px 14px; border-bottom: 1px solid #eef;
  display: flex; flex-direction: column; gap: 3px; cursor: pointer;
  transition: background 0.15s;
}
.ln-item:last-child { border-bottom: none; }
.ln-item:hover { background: var(--light-bg); }
.ln-date { font-size: 14px; color: var(--teal); font-weight: 700; }
.ln-text { font-size: 14px; color: #333; line-height: 1.5; }
.ln-new {
  font-size: 10px; background: red; color: var(--white);
  padding: 1px 5px; border-radius: 2px; margin-left: 4px;
}
.ln-footer { text-align: center; padding: 8px; }
.ln-footer a { font-size: 14px; color: var(--blue); font-weight: 700; }
.ln-footer a:hover { color: var(--orange); }

span.last-updated {
    background: #302721;
    padding: 4px 6px;
    color: #fff;
    border-radius: 2px;
    font-weight: 300;
    color: #8f93aa;
    font-size: 13px;
}

.ln-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
}

.ln-header i {
    color: #fff;
    font-size: 16px;
    margin-right: -13px;
}

.ln-badge {
    margin-left: 12px;
    background: #f3f4f6;
    color: #111827;
    font-size: 14px;
    padding: 3px 12px;
    border-radius: 20px;
    float: right;
    display: flex;
    margin-left: 50px;
  font-weight: 600;
}

.ln-ticker-wrapper {
  height: 255px; 
  overflow: hidden;
  position: relative;
  background: var(--white);
}

.ln-ticker {
  display: flex;
  flex-direction: column;
  transition: transform 0.6s ease-in-out;
}

.ln-item {
  padding: 9px 16px;
  border-bottom: 1px solid #f1f1f1;
  min-height: 85px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ln-date {
  font-size: 12px;
  font-weight: 700;
  color: #d9534f;
  margin-bottom: 0px;
  display: inline-block;
}

.ln-text {
  font-size: 14px;
  color: #222;
  line-height: 1.5;
}

.ln-new {
  display: inline-block;
  background: #e60023;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 8px;
}
/* ══════════════════════════════════════
   15. QUICK LINKS
══════════════════════════════════════ */
.ql-section { background: var(--white); padding: 40px 0; }
.ql-item {
  display: flex; flex-direction: column; align-items: center;
  text-decoration: none; gap: 10px; transition: transform 0.2s;
}
.ql-item:hover { transform: translateY(-5px); }
.ql-icon {
  width: 150px; height: 150px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 33px; color: var(--white);
  box-shadow: 0 3px 10px rgba(0,0,0,0.18);
}
.ql-item span { font-size: 15px; font-weight: 700; color: #333; }
.qlc1 { background: linear-gradient(135deg,#1b5e20,#2e7d32); }
.qlc2 { background: linear-gradient(135deg,#006064,#00838f); }
.qlc3 { background: linear-gradient(135deg,#bf360c,#e64a19); }
.qlc4 { background: linear-gradient(135deg,#1a237e,#283593); }
.qlc5 { background: linear-gradient(135deg,#880e4f,#ad1457); }
.qlc6 { background: linear-gradient(135deg,#33691e,#558b2f); }


/* ══════════════════════════════════════
   16. EVENTS
══════════════════════════════════════ */
.events-section { background: var(--light-bg); padding: 50px 0; }
.ev-card {
  background: var(--white); border-radius: 5px;
  padding: 16px; height: 100%; border: 1px solid #dde;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ev-card:hover { border-color: var(--teal); box-shadow: 0 3px 10px rgba(0,0,0,0.08); }
.ev-date-badge {
  background: var(--blue); color: var(--white);
  border-radius: 4px; display: inline-flex;
  align-items: center; gap: 6px;
  padding: 5px 10px; font-size: 13px; font-weight: 700; margin-bottom: 10px;
}
.ev-month {
  font-size: 10px; background: var(--orange);
  padding: 2px 5px; border-radius: 2px;
}
.ev-card h6 { font-size: 13px; color: var(--blue); line-height: 1.5; margin-bottom: 10px; }
.ev-time {
  font-size: 12px; color: #555;
  background: #f0f6f0; padding: 5px 10px; border-radius: 3px;
}
.ev-time i { color: var(--teal); margin-right: 4px; }


/* ══════════════════════════════════════
   17. VIEW ALL BUTTON
══════════════════════════════════════ */
.btn-viewall {
  background: var(--blue); color: var(--white);
  border: none; padding: 8px 28px; border-radius: 3px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: background 0.15s;
}
.btn-viewall:hover { background: var(--orange); color: var(--white); }


/* ══════════════════════════════════════
  Accessibility Controls
══════════════════════════════════════ */
#accessibilityPanel svg {
    fill: #20104e;
    width: 29px;
}

.offcanvas-title {
    margin-bottom: 0;
    line-height: var(--bs-offcanvas-title-line-height);
    font-weight: 600;
    margin-top: 2px;
  font-size: 20px;
}

button#reset-accessibility {
    background: var(--blue);
    border: 1px solid #0056a6;
    font-weight: 600;
    font-size: 16px;
    padding: 5px 14px;
}

button#reset-accessibility:hover {
    background: #e05c00;
    color:#fff;
  border: 1px solid #e05c00;
   }

/* ══════════════════════════════════════
  Accessibility Controls
══════════════════════════════════════ */

/* ══════════════════════════════════════
   18. FOOTER
══════════════════════════════════════ */
.site-footer { background: var(--blue); color: #bbc; padding: 20px 0 20px; }

.site-footer .boxAreaMd {
   
    color: #fff;
    font-size: 16px;
    margin-top: 45px;
}
.site-footer .boxAreaMd p{ margin-bottom:5px; }
.certified-01{ font-size:14px; }
.w3ccssBox{ width:100px; }

.ft-logo-text h5 { color: var(--white); font-size: 0.88rem; line-height: 1.4; }
.ft-about { font-size: 14px; line-height: 1.8; color: #99a; text-align: justify; margin-bottom: 0;}
.ft-head {
  color: var(--white); font-size: 14px; text-transform: uppercase;
  letter-spacing: 0.5px; border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 8px; margin-bottom: 12px;
}
.ft-link { color: #fff; text-decoration: none; font-size: 16px; display: block; margin-bottom: 5px; transition: color 0.15s; }
.ft-link:hover { color: var(--yellow); }
.ft-contact { font-size: 16px; color: #fff; line-height: 1.9; margin-bottom: 0;}
.addressList{line-height: 28px;}
.ft-contact i { color: #fff; margin-right: 6px; }
.ft-contact a{ color:#fff; }
.ft-map-placeholder {
  background: #002244; border-radius: 6px; height: 145px;
  /* display: flex; align-items: center; justify-content: center; */
  color: #446; font-size: 14px; border: 1px solid #224; margin-top: 10px;
}
.ft-map-placeholder .campus-img {
    min-height: 134px;
   }
.footer-bottom {
    background: var(--blue-mid);
    color: #cbd6e1;
    font-size: 16px;
    padding: 10px 0;
}


/* ══════════════════════════════════════
   19. RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 991px) {
  .side-icons { display: none; }
  .hero-caption { width: 55%; }
  .hero-carousel .carousel-item { height: 380px; }
}
@media (max-width: 767px) {
  .hero-carousel .carousel-item { height: 300px; }
  .hero-caption { width: 100%; background: rgba(0,20,60,0.8); padding: 20px; }
  .hero-caption h2 { font-size: 1.4rem; }
  .res-card { flex: 0 0 calc(50% - 7px); }
  .logo-wrap img { height: 50px; }
  .logo-text-hindi,
  .logo-text-eng { font-size: 0.88rem; }
}
@media (max-width: 480px) {
  .hero-carousel .carousel-item { height: 240px; }
  .hero-caption h2 { font-size: 1.1rem; }
  .res-card { flex: 0 0 100%; }
  .gov-bar-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
}

.rd-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 20px;
  border-radius: 50px;
  background: linear-gradient(135deg, #003d7a, #0b5cab);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 61, 122, 0.18);
  transition: all 0.3s ease;
}

.rd-view-btn:hover {
  transform: translateY(-2px);
  color: #fff;
  background: linear-gradient(135deg, #f47920, #e96a10);
}



.inner-banner {
    /* padding: 50px 0; */
    /* background-image: url("../images/innerpage-banner.jpg"); */
    /* background-position: center;
    background-size: cover;
    position: relative;
    color: white;
    background-color: #000; */
    /* background-blend-mode: color; */
    color: #fff;
     background: linear-gradient(135deg, #0d3b6e 0%, #1a6bbf 60%, #1e88c9 100%);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: none !important;
}
.inner-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
/* .inner-banner:before{ width:100%; height:100%; position:absolute; content: '';  left: 0; top:0; background:rgba(0, 0, 0, .6); z-index:2; } */
.inner-banner h2{ text-align:center; font-size:36px; z-index:9; position:relative; }
.inner-banner h2 span{ padding:0 5px 5px; display:inline-block; border-bottom:4px solid #fff; }

.breadcrumbArea{ background: #efeff0; }
.breadcrumbArea .breadcrumb{margin-bottom: 0; padding: 5px 0;}
.breadcrumbArea .breadcrumb > li + li::before {font-size: 15px;}
li.breadcrumb-item {
    font-size:14px;
  color:#717476;
      font-weight: 600;
}
li.breadcrumb-item a {
    font-weight: 600;
  font-size:14px;
  color:#081e52;
}


.innerSection{background: #efecfa;  padding:20px 0;  }


.innerSection .sidebar.stickySidebar.sticky {
    position: fixed;
    width: 100%;
}
.innerSection .sidebar.leftSidebar h6 i {
    width: 40px;
    height: 40px;
    background: var(--orange);
    border-radius: 10px;
    line-height: 40px;
    font-size: 18px;
    color: #fff;
    text-align: center;
}
.innerSection .sidebar.leftSidebar .widget {
    background: var(--white);
    border: 1px solid #cdd0d7;
    padding: 20px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.innerSection .sidebar.leftSidebar h6 {
    background: transparent;
    padding: 0px 0px;
    font-size: 20px;
    display: flex;
    font-weight: 700;
    align-items: center;
    gap: 10px;
    color: #000;
    border-radius: 10px 10px 0 0;
    margin-bottom: 0px;
    margin-bottom: 15px;
}
.innerSection .sidebar.leftSidebar .widget.category .category-list ul{ list-style:none; margin:0; padding:0; }

.innerSection .sidebar.leftSidebar .widget.category .category-list ul li{border-bottom: 1px solid #ced4da; margin:0; padding:0;}
.innerSection .sidebar.leftSidebar .widget.category .category-list ul li a {
    background: var(--white);
    color: #000;
    font-size: 15px;
    border-radius: 7px;
    padding: 10px 10px;
    display: block;
}

.innerSection .sidebar.leftSidebar .widget.category .category-list ul li.active a,
.innerSection .sidebar.leftSidebar .widget.category .category-list ul li a:hover {
    background: var(--blue);
    color: #fff;
}

.innerSection .sidebar.leftSidebar .widget.category .category-list ul li a i{ margin-right:5px; }



.innerSection .aboutSectionArea{background: var(--white); min-height: 700px; border-radius: 15px; padding: 25px; font-size: 16px; color: #000; font-weight: 600;}

.innerSection .aboutSectionArea h3{ font-size:25px; margin-bottom: 20px; color:#000; font-weight: 700;}
.innerSection .aboutSectionArea h4{ font-size:21px; margin-bottom: 20px; color:#000; font-weight: 700;}
.innerSection .aboutSectionArea h5{ font-size:18px; line-height: 25px; margin-bottom: 10px; color:#000; font-weight: 700;}
.innerSection .aboutSectionArea p{font-size:16px;  font-weight: 500; color:#000;}

.innerSection .aboutSectionArea ul li,
.innerSection .aboutSectionArea ol li{ margin-bottom:8px; }

.innerSection .aboutSectionArea ul li ul,
.innerSection .aboutSectionArea ul li ol{ margin:10px 0; }



.innerSection .aboutSectionArea .ProductsHeadingArea h2{ color:#0056a6; font-weight:800; }
.innerSection .aboutSectionArea .ProductsHeadingArea p{color:#0056a6; font-weight:800; font-size: 17px;}

.innerSection .aboutSectionArea .link-btn {
    padding: 8px;
    outline: none;
    color: #fff;
    font-weight: 500;
    height: 40px;
    width: 40px;
    text-decoration: none;
    text-align: center;
    display: block !important;
    background: var(--orange);
    border-radius: 4px;
    border: none;
}

.innerSection .aboutSectionArea .link-btn:hover{ background: var(--blue);  }

.innerSection .aboutSectionArea .boxArea-01{ background:#f3f0ee; padding:15px; margin-bottom:25px; border-radius:15px; }
.innerSection .aboutSectionArea .boxArea-01 p{ margin-bottom:0; }
.innerSection .aboutSectionArea .boxArea-01 img{border-radius:10px; }


.innerSection .sliderAreaBox{background: var(--white); border-radius: 15px; padding: 25px; font-size: 16px; color: #000; font-weight: 600;}

.sliderAreaBox.arrowAction-01 .owl-carousel .owl-stage-outer{ margin-bottom:0; }

/*.innerSection .aboutSectionArea table{
    border-left: 1px solid #212121;
      border-top: 1px solid #212121;
    border-collapse: collapse;
}

.innerSection .aboutSectionArea table tr th,
.innerSection .aboutSectionArea table tr td {
    border-right: 1px solid #212121;
      border-bottom: 1px solid #212121;
}*/

.innerSection .aboutSectionArea table.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 4px;
}

.innerSection .aboutSectionArea table.table tr {
  background: #eaeaea;
  border-radius: 10px;
  overflow: hidden;
}


.innerSection .aboutSectionArea table.table thead tr th,
.innerSection .aboutSectionArea table.table tr th  {
  padding: 8px 10px;
  border: none;
  border-right: 1px solid #bcbcbc;
  background: var(--blue);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.innerSection .aboutSectionArea table.table tbody tr td {
  padding: 8px 10px;
  background: #eaeaea;
  border: none;
  font-size: 16px;
  font-weight: 600;
  border-right: 1px solid #bcbcbc;
}

.innerSection .aboutSectionArea table.table tbody tr td:first-child,
.innerSection .aboutSectionArea table.table thead tr th:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.innerSection .aboutSectionArea table.table tbody tr td:last-child,
.innerSection .aboutSectionArea table.table thead tr th:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border: 0; 
/*  text-align: right;*/
}

.innerSection .aboutSectionArea table.table tbody tr:nth-child(even) td{
  background: #dbdbdb;
}
.innerSection .aboutSectionArea table.table tbody tr td  span{ font-size:13px; }
.innerSection .aboutSectionArea table.table tbody tr td  span.newArea{ background:#f5160b; padding:2px 8px; color:#fff; border-radius:5px; }

.innerSection .aboutSectionArea table.table tbody tr td .redColor,
.innerSection .aboutSectionArea table.table tbody tr td strong.redColor{ color:#ff0000; font-size:15px; line-height:18px; }

.innerSection .aboutSectionArea .imgBoxArea{ border:1px solid #b8b8b8; padding:15px; border-radius:15px; margin-bottom:50px; box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 30px 50px -20px, rgba(0, 0, 0, 0.3) 0px 10px 20px -10px; }
.innerSection .aboutSectionArea .imgBoxArea img{ width:100%; border-radius:15px;}

.innerSection .aboutSectionArea .formAreaBox{border: 1px solid #abaaaa; padding: 30px; border-radius: 10px;}
.innerSection .aboutSectionArea .formAreaBox label{ font-size:16px; color:#000; font-weight:600; padding:0; margin:0; padding-bottom:5px; }
.innerSection .aboutSectionArea .formAreaBox input{ width:100%; padding:10px; border-radius:8px; border:1px solid #b8b8b8; }



.tab-style-two-items nav { }
.tab-style-two-items nav .nav-tabs{padding:5px; background: var(--white); border-radius: 50px; border: 1px solid #333; margin-bottom: 0;}

.tab-style-two-items nav .nav-tabs::before, .tab-style-two-items nav .nav-tabs::after {
  display: none;
}

.tab-style-two-items nav .nav-tabs button {
  border: none;
  color:#000;

  font-weight: 700;
  padding: 10px 12px;
  font-size: 16px;
  background: transparent;
  text-align: left;
  display: block;
  text-align: center;
  border-radius: 50px;
  position: relative;
  border: 1px solid #034ea2;
  z-index: 1;
  background: var(--white);
}

.tab-style-two-items nav .nav-tabs button:last-child {
  margin-right: 0;
}
.tab-style-two-items nav .nav-tabs button:hover,
.tab-style-two-items nav .nav-tabs button.active {
  background: var(--orange);
  color: #fff;
}



.tab-style-two-items .tab-content {
    background: #fefefe;
    padding: 20px;
    border: 1px solid #cccccc;
    border-radius: 15px;

}


/* sidebar menu */
.leftSideBar{}
.lft-side {
    height: 100%;
  position: relative;
   width: 100%;
}
.lft-side .sidebar {
    width: 100%;
   background: #034ea2;
    color: #cfd8e3;
    overflow-y: auto;
    z-index: 100;
    background: var(--white);
    border: 1px solid #cdd0d7;
    padding: 15px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px; 
}


.lft-side .menu-item {
    border-bottom: 1px solid #ced4da;
}
  /* Sidebar scrollbar - Minimal */
.lft-side .sidebar::-webkit-scrollbar { width: 5px; }
.lft-side .sidebar::-webkit-scrollbar-track { background: rgba(0,0,0,0.1); }
.lft-side .sidebar::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
.lft-side .sidebar-header {
    padding: 0px 0px;
    text-align: left;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}


.lft-side .sidebar-header h3{
    background: transparent;
    padding: 0px 0px;
    font-size: 20px;
    display: flex;
    font-weight: 700;
    align-items: center;
    gap: 10px;
    color: #000;
    border-radius: 10px 10px 0 0;
    margin-bottom: 0px;
}
.lft-side .sidebar-header h3.ahead-50{ font-size:16px; }
.lft-side .sidebar-header h3 i {
    width: 40px;
    height: 40px;
    background: var(--orange);
    border-radius: 10px;
    line-height: 40px;
    font-size: 18px;
    color: #fff;
    text-align: center;
}



.lft-side .menu-link {
    display:flex; align-items:center; padding:10px 10px 10px 10px;
    color:#000; text-decoration:none; font-size:16px;
       border-radius: 10px;

}
.lft-side .menu-link i:first-child { width:29px; text-align:center; font-size:13px;     border-radius: 10px;}
.lft-side .menu-link:hover { background: var(--blue); color:#fff; }
.lft-side .menu-link.active {
    background: var(--blue); color:#fff;  font-weight:600;
}

.lft-side .arrow {
    margin-left:auto; transition:transform 0.35s ease; font-size:0.9rem;
}
.lft-side .menu-link.active .arrow { transform:rotate(90deg); }

/* Submenu Styling */
.lft-side .submenu {
   max-height:0; overflow:hidden;
    transition:max-height 0.5s ease;
}
.lft-side .submenu.show { max-height:1200px; padding-bottom: 13px;}

/* Level 2 items (Imran, Library etc) */
.lft-side .submenu > .menu-item > .menu-link,
.lft-side .submenu > a {
    padding-left:30px; font-size:15px; position:relative; display:block; color: #000;
  padding-top: 10px;
    padding-bottom: 10px;
  line-height: 20px;
  border-bottom: 1px solid #ced4da;
  display: flex;
  padding-right: 10px;
  border-radius: 10px;
}
.lft-side .submenu > .menu-item > .menu-link::before,
.lft-side .submenu > a::before {
    content:"\f061"; 
        font-family: "Font Awesome 6 Pro";
    font-weight:900; font-size:15px;
    position:absolute; left:7px; top:50%; transform:translateY(-50%);
    color:#000;
}

/* Level 3 items (Design 1, Design 2 etc) */
.lft-side .submenu .submenu a {
    padding-left:34px; font-size:15px; color:#000;
}
.lft-side .submenu .submenu a::before {
        content: "\f061";
    font-family: "Font Awesome 6 Pro";
    font-weight:900; font-size:12px; left:10px; color:#000;
}

.lft-side .menu-item .submenu.show {
    padding-top: 9px;
}
.lft-side .submenu.submenutop.show {
    padding-top: 0;
}
.lft-side .submenu.submenutop.show .arrow {
    float: right;
}
.lft-side .menu-item .submenu.show a:hover,
.lft-side .menu-item .submenu.show a.active {
    background: var(--blue); color: #fff;
}
.lft-side .menu-item .submenu.show a:hover:before,
.lft-side .menu-item .submenu.show a.active:before
{ color:#fff }
/* .lft-side a.menu-link.has-submenu {
    font-weight: 700;
  } */
/* sidebar menu */


.lft-side .sidebar .menu-link-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
}

.lft-side .sidebar  .menu-link-wrapper.active {
   background: var(--blue);
    color: #fff;
}

.lft-side .sidebar  .menu-link-wrapper:hover {
   background: var(--blue);
    color: #fff;
}


.lft-side .sidebar  .menu-text {
    flex: 1;
    text-decoration: none;
    color: #000;
}

.lft-side .sidebar  .menu-text.no-link {
    cursor: pointer;
}
.lft-side .sidebar  .menu-link-wrapper.active .menu-text {
    color: #fff;
}
.lft-side .sidebar  .menu-link-wrapper:hover .menu-text {
    color: #fff;
}

.lft-side .sidebar  .menu-arrow {
    cursor: pointer;
    padding-left: 10px;
}

.lft-side .sidebar  .submenu {
    display: none;
    margin-left: 0px;
}

.lft-side .sidebar  .submenu.show {
    display: block;
}






/*inner css*/
.pagination {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

.page-item:first-child .page-link, .page-item:last-child .page-link {
  border-radius: 50%;
}

.page-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
 
  border-radius: 50%;
  width: 34px;
  height: 34px;
  overflow: hidden;
  color: #000067;
  font-weight: 600;
  font-size: 1.25rem;
}
.page-link::after {
  position: absolute;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(237deg, rgb(255, 229, 202) 0%, rgb(246, 146, 30) 53%, rgb(216, 59, 32) 100%);
  content: "";
}
.page-link:hover {
  color: #fff;
}
.page-link:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.paginationArea ul.pagination{ list-style:none; }

.paginationArea ul.pagination .page-link {width: 34px;height: 34px;}
.paginationArea ul.pagination .page-link{ border:0 }

.active>.page-link, .page-link.active,.page-link::after {
   
    background:#f27e1f;
    border-color: #f27e1f;
}

.innerSection .aboutSectionArea .cardArea{    
    background: #fefefe;
    padding: 20px;
    border: 1px solid #cccccc;
    border-radius: 15px; margin-bottom: 20px;}

.innerSection .aboutSectionArea .cardArea .imgBoxArea,
.innerSection .aboutSectionArea .cardArea .imgBoxArea img {height:100%;}
.innerSection .aboutSectionArea .cardArea .imgBoxArea .badgeArea {
    position: absolute;
    bottom: 0px;
    background: var(--white);
    font-size: 18px;
    padding: 4px 15px;
    border-radius: 7px;
    left: 50%;
    font-weight: 700;
    transform: translateX(-50%);
}
.innerSection .aboutSectionArea .cardArea .cardAddressArea{ height:100%; border: 1px solid #b2ceea; padding: 25px; border-radius: 15px; background: #e0f0ff;}
.innerSection .aboutSectionArea .cardArea .cardBodyArea{padding: 20px;
    border: 1px solid #cccccc;
    border-radius: 15px;}

 .innerSection .aboutSectionArea .cardArea .cardBodyArea p:last-child{ margin-bottom:0; }  

 .innerSection .aboutSectionArea .annualReportArea{
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
   border: 3px solid #07529b;
}

 .innerSection .aboutSectionArea .annualReportArea h4 {
  background: #e0f0ff;
  font-size: 18px;
  padding: 10px;
  border-bottom: 3px solid #07529b;
  margin-bottom: 0;
}

 .innerSection .aboutSectionArea .annualReportArea .cell {
  padding: 0;
  text-align: center;
  border-right: 3px solid #07529b;
}

 .innerSection .aboutSectionArea .annualReportArea .cell:last-child {
  border-right: none;
}

 .innerSection .aboutSectionArea .photos-card {
    display: flex;
    flex-direction: column;
   
    margin-bottom: 20px;
}

 .innerSection .aboutSectionArea .photos-card iframe{ width:100%; height:210px; border-radius:10px; }
 .innerSection .aboutSectionArea .photos-card .photos-img,  .innerSection .aboutSectionArea .photos-card .videos-img {
    width: 100%;
    height: 200px;
  /*  object-fit: cover;
    object-position: top;*/
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
 .innerSection .aboutSectionArea .photos-card.staffclubImg .photos-img{ height:240px; }

 .innerSection .aboutSectionArea .photos-card .photos-btn {
    bottom: 15px;
    right: 15px;
    color: #fff;
    padding: 8px;
    background: rgba(242,126,31,.9);
    border-radius: 4px;
    border: none;
    text-align: center;
    outline: none;
    height: 40px;
    width: 40px;
    text-decoration: none;
}


 .innerSection .aboutSectionArea .photos-card .photoArea{ background:#e0f0ff; padding:15px; border-radius:10px; }
 .innerSection .aboutSectionArea .photos-card .photoArea .photos-card-body h4{ font-size:16px; margin-bottom:10px; }



 .innerSection .aboutSectionArea .searchAreaBox {
    margin-bottom: 20px;
    border-radius: 15px;
    border: 1px solid #a7a7a7;
    padding: 15px 15px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
 .innerSection .aboutSectionArea .searchAreaBox label{ display:block; font-weight:500; color:#000; }
 .innerSection .aboutSectionArea .searchAreaBox .form-control{ width:100%; border:1px solid #929292; border-radius: 0;}
 .innerSection .aboutSectionArea .searchAreaBox .form-select{ width:100%; border:1px solid #929292; border-radius: 0;}
 .innerSection .aboutSectionArea .searchAreaBox .btn{background: var(--blue); color:#fff; border-radius:0; text-align:center; padding:7px 10px; display:inline-block; }
 .innerSection .aboutSectionArea .searchAreaBox .btn:hover{background: var(--orange)}

 .innerSection .aboutSectionArea .NewsAreaBox { padding:0 40px; }

 .innerSection .aboutSectionArea .NewsAreaBox h3,
 .innerSection .aboutSectionArea .NewsAreaBox h4{ text-align:center; }

  .innerSection .aboutSectionArea .NewsAreaBox .imgBoxArea{ box-shadow:none; margin-bottom:20px; }

   .innerSection .aboutSectionArea .NewsAreaBox img{
    width: 100%;
    border: 1px solid #b8b8b8;
    box-shadow:none; margin-bottom:20px;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 20px;
   
}

.innerSection .aboutSectionArea .socialMediaArea a{ border:1px solid #9e9e9e; border-radius:7px; padding:3px 15px; color:#000; }
.innerSection .aboutSectionArea .socialMediaArea a i{ margin-right:5px; }



.innerSection .aboutSectionArea .organisation-card {
   border: 1px solid #b2ceea;
       background: #e0f0ff;
    border-radius: 8px;
    padding: 16px 32px;
    gap: 8px;
}

.innerSection .aboutSectionArea .organisation-card .organisation-card-title {
  gap: 10px;
  min-height: 115px
}

@media(max-width:991.5px) {
  .innerSection .aboutSectionArea .organisation-card .organisation-card-title {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    align-items: start !important
  }
}

.innerSection .aboutSectionArea .organisation-card .organisation-card-title .h3,
.innerSection .aboutSectionArea .organisation-card .organisation-card-title h3 {
  color: #214aab;
  font-style: normal;
  line-height: 28px
}

.innerSection .aboutSectionArea .organisation-card .organisation-card-title img {
  max-width: 191px;
  width: auto;
  height: 84px
}




.innerSection .aboutSectionArea .teamCardWrapper {
   background: #e0f0ff;
    border-radius: 24px;
    padding: 30px;
    position: relative;
    margin-bottom: 50px;
}
.innerSection .aboutSectionArea  .teamCardWrapper:before{ width:2px; top:100px; background:#c0c0c0; bottom:150px; position:absolute; left:50%; margin-left:-1px; content: ""; }

.innerSection .aboutSectionArea  .teamCardWrapper .ministerBox {
    width: 350px;
    margin: auto;
    background-color: #fff;
   
    box-shadow: 0 4px 4px 0 rgba(0,0,0,.12);
    border-radius: 12px;
    border: 2px solid rgba(0,0,0,0);
    z-index: 1;
    margin-top: 120px;
    position: relative;
    z-index: 1;
}
.innerSection .aboutSectionArea  .teamCardWrapper .ministerBox:first-child{ margin-top: 80px;}
.innerSection .aboutSectionArea  .teamCardWrapper .ministerBox a{display: block; color: #000;  padding: 85px 24px 24px;}
.innerSection .aboutSectionArea  .teamCardWrapper .ministerBox a .ministerImgBox { position:absolute; top:-140px; left:50%; transform:translateX(-50%); }

.innerSection .aboutSectionArea  .teamCardWrapper .ministerBox a .ministerImgBox img{
    border: 1px solid #fff;
    border-radius: 50%;
    width: 120px;
    height: 120px;
}

.innerSection .aboutSectionArea  .teamCardWrapper .ministerBox a h5{ font-size:16px; }
.innerSection .aboutSectionArea  .teamCardWrapper .ministerBox a h6{ font-size:14px; color:#000; }

.innerSection .aboutSectionArea  .our-team-list-header{background: #000067; color: #fff; padding: 10px; margin-bottom: 4px;}
.innerSection .aboutSectionArea  .our-team-list-header p{ color:#fff; }

.ministerProfileModal{ font-weight:600; }
.ministerProfileModal .modal-body{ padding:0 25px 30px 25px; }
.ministerProfileModal .f-12{ font-size:12px; }
.ministerProfileModal .modal-header{ border:0; padding:15px 15px 0 0; }
.ministerProfileModal .ministerImgBox{ margin-bottom:15px; }
.ministerProfileModal .ministerImgBox img{ 
border-radius: 50%;   
 border: 2px solid #000067;
    object-fit: cover;
    width: 130px;
    height: 130px;
     }

/*.innerSection .aboutSectionArea .organisation-card .organisation-description {
  min-height: 130px
}*/



.innerSection .aboutSectionArea  .tableheader {
    background: #a3bbf3;
    border-radius: 4px;
    padding: 12px 32px;
    margin: 0 0 16px;
}

.innerSection .aboutSectionArea .announcementbox {
    border-radius: 8px;
    border: 1px solid #b9b9b9;
    background: var(--white);
    padding: 8px 32px;
    margin-bottom: 6px;
}
.innerSection .aboutSectionArea .announcementbox p{ font-size:14px; line-height:20px; }
.innerSection .aboutSectionArea .announcementbox i{ font-size:22px; }
.innerSection .aboutSectionArea .counter-box {
    padding: 2px 6px;
    background: #a3bbf3;
    border-radius: 4px;
    color: #162f6a;
    text-align: center;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 600;
    line-height: 12px;
    letter-spacing: -.24px;
    width: 25px;
    height: 25px;
}

.innerSection .aboutSectionArea .announcementbox .download-btn {
    padding: 8px 12px;
    gap: 8px;
    border: none;
    outline: none;
    background: #d2dfff;
    border-radius: 4px;
    color: #162f6a;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: .12px;
    text-decoration: none;

}
.innerSection .aboutSectionArea .announcementbox .download-btn i{font-size:16px;}

.innerSection .aboutSectionArea .addressAreaBox p a{ font-size:18px; }

.innerSection .aboutSectionArea .addressAre{ border:1px solid #d3d3d3; padding:15px; border-radius: 15px;}
.innerSection .aboutSectionArea .addressAre iframe{ width:100% !important; }
.ft-social{ margin-bottom:15px; }
.ft-social a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}

.ft-social a:hover {
  transform: translateY(-3px);
  opacity: 0.85;
}

.ft-social a i{
      font-size: 16px;
    margin-top: 4px;
}
/* Colors */
.fb { background: #1877f2; }
.yt { background: #ff0000; }
.x  { background: #000000; }
.ig {
  background: radial-gradient(circle at 30% 107%,
      #fdf497 0%,
      #fdf497 5%,
      #fd5949 45%,
      #d6249f 60%,
      #285AEB 90%);
}


.products {
  position: relative;
  padding: 20px 0px;
}



.section-head {
  text-align: center;
  margin-bottom: 30px;
}
.activities .section-head{
  margin-bottom:50px;
}

.section-head h1 {
  font-size: 34px;
  color: #ff7a00;
  margin-bottom: 10px;
  font-weight: 700;
}

.section-head p {
  max-width: 1280px;
  margin: auto;
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  max-width:1600px;
  margin:0 auto;
}

.card{
  background:#fff;
  border:1px solid #e7edf4;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(15,23,42,.06);
  transition:transform .22s ease,box-shadow .22s ease;
}

.card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(11,95,165,.12);
}

.card-top{
  background: var(--blue);
  color:#fff;
  padding:14px 16px;
  min-height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.card-top h2{
  margin:0;
  font-size:17px;
  line-height:1.35;
  font-weight:700;
  letter-spacing:.1px;
}

.card-image{
  height:210px;
  padding:14px;
  background:#f8fbff;
  border-bottom:1px solid #edf2f7;
}

.card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:10px;
  display:block;
}

.card-body{
  padding:14px 16px 18px;
  border: 1px solid rgb(208, 233, 254);
  margin: 13px;
  border-radius: 10px;
  background-color: aliceblue;
}

.card-body ul{
  list-style:none;
  padding:0;
  margin:0;
}

.card-body li{
  margin:0;
}

.card-body li + li{
  margin-top:8px;
}

.card-body a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  text-decoration:none;
  color:#17324d;
  background:#fff;
  border-bottom:1px solid var(--line);
  font-size:14px;
  font-weight:600;
  transition:all .2s ease;
  position:relative;
  overflow:hidden;
}


.card-body a:hover{
  background:#f2f8ff;
  color:var(--blue);
  border-color:#bfd8ee;
  transform:translateX(3px);
}

.card-body a:hover::after{
  transform:scaleX(1);
}

.link-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:0px;
}

.link-list a{
  display:flex;
  align-items:center;
  gap:12px;
  padding:8px 12px;
  border-radius:10px;
  text-decoration:none;
  color:#17324d;
  font-size:16px;
  font-weight:600;
  border:1px solid #e5ecf3;
  position:relative;
  transition:all .2s ease;
}

.link-list a::before{
content:"\279C";
  color:#0b5fa5;
  font-size:20px;
  line-height:1;
  transition:transform .2s ease,color .2s ease;
}


.link-list a:hover{
  color:#0b5fa5;
  padding-left:16px;
  box-shadow:0 8px 18px rgba(11,95,165,.10);
  transform:translateX(3px);
}





@media (max-width:1200px){
  .card-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media (max-width:900px){
  .card-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:560px){
  .card-grid{
    grid-template-columns:1fr;
  }

  .card-image{
    height:190px;
  }
}
.enquire-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #ff7a00;
  color: #fff;
  text-decoration: none;
  padding: 14px 10px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border-radius: 10px 0 0 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 22px rgba(255, 122, 0, 0.35);
}



.division-page-sidebar nav .nav-link.active{
      background-color:var(--blue);
    color: #fff;
}
.division-page-sidebar nav .nav-link::before{
   content: "\279C"; 
  color: #0b5fa5;
  font-size: 20px;
  font-weight: bold;
  display: none;
  line-height: 1;
  transition: transform .2s ease, color .2s ease;
  margin-right: 8px;
}
.division-page-sidebar nav .nav-link.active::before{
  color:#fff;
}
.division-page-sidebar nav .nav-link{
  font-size: 16px;
  font-weight:700;

}
.aboutSectionArea .directorBoxArea .directorBoxPanel {
    border: 1px solid #b8b8b8;
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 30px 50px -20px, rgba(0, 0, 0, 0.3) 0px 10px 20px -10px;
    z-index: 9;
    position: relative;
}
.boxArea-02 {
    background: #fefefe;
    padding: 20px;
    border: 1px solid #cccccc;
    border-radius: 15px;

}
.aboutSectionArea .directorBoxArea .directorBoxPanel img{ width:100%; border-radius: 15px;
    height: 100%;
    object-fit: cover;
}

.img-fit{object-fit: cover; height: 100%}
.aboutSectionArea .directorBoxArea .directorBoxPanel .directorDetailsBox{ background:#e1f0ff; height: 100%; padding:15px; border-radius:25px; }
.bg-04{background: #e1e8ff !important;}
.bg-05{background: #f7ffe1 !important;}
.bg-07{ background:#4567d7 !important; }
.bg-08{ background: var(--orange) !important;}
.aboutSectionArea .directorBoxArea .directorHdArea{ background: var(--blue); color:#fff; padding:8px; text-align:center; border-radius:6px; }
.aboutSectionArea .directorBoxArea .directorBoxPanel .directorDetailsBox p a{ color:#000; }
.aboutSectionArea .directorBoxArea .directorBriefBox {
    background: #fefefe;
    padding: 20px;
    padding-top: 60px;
    border: 1px solid #cccccc;
    border-radius: 15px;
    margin: -50px 20px 0px 20px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.aboutSectionArea .directorBoxArea .directorBriefBox h6 {
    font-size: 20px;
    font-weight: 800;
    display: table;
    padding: 0px 15px;
    background: #fff;
    margin-top: -35px;
    border-left: 2px solid #cccccc;
    border-right: 2px solid #cccc;
    margin-bottom: 20px;
}
.aboutSectionArea .directorBoxArea .directorBriefBox.hd-st-01 h6 {
    font-size: 20px;
    font-weight: 800;
    border-radius: 7px;
    /* transform: skewX(19deg); */
    display: table;
    padding: 5px 15px;
        background: var(--blue);
    margin-top: -39px;
    border: 2px solid #0056a6;
    border-right: 2px solid #0056a6;
    margin-bottom: 20px;
    color: #fff;
}

.innerSection .aboutSectionArea  h6.hedingArea-title{font-size: 25px; text-align: center; border: 0;}

.aboutSectionArea .directorBoxArea .directorBriefBox.hd-st-01 p{ margin-bottom:0; }

.aboutSectionArea .directorBoxArea .directorBriefBox ul.researchInterestArea{ margin:0; padding:0; list-style:none; display:flex; gap:15px; }
.aboutSectionArea .directorBoxArea .directorBriefBox ul.researchInterestArea li{ border:1px solid #333; padding:4px 10px; border-radius:7px; background: #e1f0ff; color:#000; }
.aboutSectionArea .directorBoxArea .directorBoxPanel .directorDetailsBox i {
    width: 30px;
    height: 30px;
    background: #ff7a00;
    line-height: 30px;
    text-align: center;
    color: #fff;
    border-radius: 7px;
}

.aboutSectionArea .ministerBoxArea { border:1px solid #cdd0d7; padding:15px; border-radius:15px; }
.innerSection .aboutSectionArea .ministerImgBox { width: 90px; height: 90px; margin: auto; }
.innerSection .aboutSectionArea .ministerBoxArea img{width: 90px; height: 90px; border-radius: 50%; border:1px solid #cdd0d7;}
.innerSection .aboutSectionArea .ministerBoxArea h5{ color:#000;  margin:0; padding:0; margin-top:10px; margin-bottom:5px; }
.innerSection .aboutSectionArea .ministerBoxArea h6{ color:#000;}
@media (max-width: 1100px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {

.section
  .section-head h1 {
    font-size: 28px;
  }

  .enquire-btn {
    display: none;
  }
}



.custom-tabs .nav-link {
  background: #f5f7fb;
  border: 1px solid #e6e9f2;
  margin-bottom: 10px;
  border-radius: 10px;
  color: #333;
  font-weight: 500;
  text-align: left;
  padding: 10px 15px;
  transition: 0.3s;
}

.custom-tabs.leftNavBar .nav-link{ margin-bottom:5px;  padding: 7px 15px; }


.custom-tabs .nav-link:hover {
  background: #e9f0ff;
  color: #0d6efd;
  transform: translateX(3px);
}

.custom-tabs .nav-link.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 4px 10px rgba(13, 110, 253, 0.2);
}

.language-switcher .dropdown-menu{    z-index: 9999;}

@media only screen and (min-width:768px){
  .lft-side .sidebar {
   position: sticky;
   top: 50px; 
   left: 0;
}
}

/*banner*/

.sliderArea-01{ position:relative; }
.bannerSection .bannerSlider .bannerArea img{ width:100%; }
.sliderArea-01 .bx-wrapper{ border:0; margin:0; padding:0; }
.sliderArea-01 .bxslider{ width:100%; border:0; }

.sliderArea-01  .bx-controls .bx-controls-direction a {
    background: transparent;
    border: 1px solid #597db1;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-indent: 0;
    font-size: 0;
    z-index: 99;
}
.sliderArea-01  .bx-controls .bx-controls-direction a:hover{ background:#e46400; border-color:#e46400; }
.sliderArea-01  .bx-controls .bx-controls-direction a:after {
    position: absolute;
    background: #000; 
    width: 40px;
    height: 40px;
      border-radius: 50%;
    top: 0%;
    color: #fff;
    font-weight: 500;
    text-align: center;
    font-size: 18px;
    font-family: 'Font Awesome 6 Pro';
}

.sliderArea-01  .bx-controls .bx-controls-direction a.bx-prev:after {content: '\f053'; }
.sliderArea-01  .bx-controls .bx-controls-direction a.bx-next:after {content: '\f054'; }



.sliderArea-01 .bx-wrapper .bx-controls-auto .bx-stop {

    background: url('../images/controls.png') -86px -44px no-repeat;

}

.sliderArea-01 .bx-wrapper .bx-controls-auto {
    bottom: 19px !important;
    right: 10px !important;
    background: #162f6a;
    height: 25px;
    width: 25px !important;
    padding-top: 7px;
    border-radius: 5px;
    padding-left: 5px;
    line-height: 20px;
    /* display: none; */
}
.sliderArea-01 .bx-wrapper .bx-controls-auto .bx-controls-auto-item {
    display: none;
}

.sliderArea-01 .bx-wrapper .bx-controls-auto .bx-controls-auto-item:last-child {
    display: block;
}

.sliderArea-01 .bx-wrapper .bx-controls-auto .bx-start {
    background: url(../images/controls.png) -86px -11px no-repeat;
}

.sliderArea-01 .bwrappex-r .bx-pager-item, .bx-wrapper .bx-controls-auto .bx-controls-auto-item {
    display: block;
}
.sliderArea-01  .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
    display: flex;
    position: absolute;
    background: #d2dfff;
    margin: 0;
    padding:6px 5px;
    border-radius: 10px;
    bottom: 18px;
    width: auto;
    right: 44px;
}
.sliderArea-01 .bx-wrapper .bx-pager.bx-default-pager a {width: 15px;height: 15px;border-radius: 50px; background: #9b7cfa;}
.sliderArea-01 .bx-wrapper .bx-pager.bx-default-pager a:hover,
.sliderArea-01 .bx-wrapper .bx-pager.bx-default-pager a.active,
.sliderArea-01 .bx-wrapper .bx-pager.bx-default-pager a:focus {
    background: #29136c;
}

.avatar-sm { width:40px; height:40px; }
 
.arrowAction-01{ position:relative; }
.research-spotlight.arrowAction-01{ height:100%;}
.arrowAction-01 .owl-nav {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
}

.arrowAction-01 .owl-nav button{
    position: absolute;
    top: -43px;
    color: #757575;
    width: 30px;
    height: 26px;
    overflow: hidden;
    }
.arrowAction-01 .owl-nav button.owl-prev {
    right: 63px;
}
.arrowAction-01 .owl-nav button.owl-next{right: 0px;}

.arrowAction-01 .owl-nav button:before {
               font-family: 'Font Awesome 6 Pro';
    color: #323232;
    border: 1px solid #ccc;
    background:#fff;
    width: 24px;
    font-weight: 900;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;

    font-size: 16px;
    transition: all 0.5s ease;
}

.arrowAction-01 .owl-nav button.owl-prev:before {
 content: "\f104";

}

.arrowAction-01 .owl-nav button.owl-next:before {
 content: "\f105";

}
.arrowAction-01 .owl-carousel .owl-stage-outer { margin-bottom:20px; }
.arrowAction-01 .owl-dots{width:100%; text-align:center; }
.arrowAction-01 .owl-dots .owl-dot{ width:12px; height:12px; background:#8f79d2; border-radius:50px; margin:0 5px; }
.arrowAction-01 .owl-dots .owl-dot.active{background:#29136c; }

.arrowAction-01 .btnBox {
    position: absolute;
    top: -42px;
    right: 66px;
    z-index: 9;
}
.arrowAction-01 a.btnPs {
    width: 25px;
    height: 25px;
    line-height: 25px;
    color: #fff;
    border-radius: 50px;
    position: absolute;
    font-size: 11px;
    text-align: center;
    left: 10px;
    background: #162f6a;
    border: 1px solid #fff;
}

.d-none-1 {
    display: none;
}


.btn-primary {

    padding: 4px 10px;
    font-size: 13px;
    background-color: #e9f5ff;
    color: #272727;
    text-decoration: none;
    font-weight: 600;

        align-items: center;
    border-radius: 6px;
    border: 1px solid #0056a6;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: var(--orange);
    color: #fff;
}

.innerSection .accordion-button.collapsed{
    background: #e1f0ff;
    border: 1px solid #6891ba;
   
}

.innerSection .aboutSectionArea .accordion .accordion-item { margin-bottom:5px; }
.innerSection .aboutSectionArea .accordion .accordion-item .accordion-button{background-color: #e1f0ff; }
.innerSection .aboutSectionArea .accordion .accordion-item .accordion-button:not(.collapsed) {
    
    background:#13519e; color:#fff;

    box-shadow: none;
}

.innerSection .aboutSectionArea .accordion .accordion-item .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.innerSection .accordion .accordion-item h2 .accordion-button { padding: 10px; font-size:16px; font-weight:700; }

.innerSection .steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.innerSection .steps .step {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    background: #eef6fd;
    border: 1px solid #c6d4e8;
    border-radius: 10px;
    transition: all 0.2s;
    cursor: default;
}

.innerSection .steps .step .step-num {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #0d3b6e, #1a6bbf);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 3px 8px rgba(26, 107, 191, 0.3);
}

.innerSection .step-body h5 {
    font-size: 16px;
    font-weight: 700;
    color: #0d3b6e;
    margin-bottom: 3px;
}


.innerSection .newsAreaPanel .campaign-item{
  position: relative;
  background: #eeeeee;
  border: 1px solid #c4c4c4;
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 10px;
}

.innerSection .newsAreaPanel .campaign-date{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 65px;
  height: 65px;
  background: #01599a;
  border-radius: 50px;
  right: 30px;
  top: 30px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  z-index: 1;
}

.innerSection .newsAreaPanel .campaign-date span{
  display: block;
  line-height: 1.1;
  color: #fff;
}

.innerSection .newsAreaPanel .campaign-date-day{
  font-weight: 800;
  font-size: 22px;
}

.innerSection .newsAreaPanel .campaign-date-month{
  font-weight: 400;
  font-size: 15px;
}

.innerSection .newsAreaPanel .campaign-img {
  overflow: hidden;
  border-radius: 10px;
  transition: all .2s;
}

.innerSection .newsAreaPanel .campaign-img img{
  transition: all .2s;
}

.innerSection .newsAreaPanel .campaign-item:hover .campaign-img img{
  transform: scale(1.1); 
  transition: all .2s;
} 

.innerSection .newsAreaPanel .campaign-content{
  margin-top: 15px;
  background: #fff; padding: 15px; border-radius: 10px;
}

.innerSection .newsAreaPanel .campaign-title {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 26px;
}
.innerSection .newsAreaPanel .campaign-title a:hover{
  color: var(--theme-color); 
}

.innerSection .newsAreaPanel .campaign-goal{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.innerSection .newsAreaPanel .campaign-goal p span{
  font-weight: 700;
  font-size: 17px;
  color: var(--theme-color);
}

.innerSection .newsAreaPanel .campaign-footer .theme-btn{
  padding: 12px 22px;
}

.pd-e-Box{ padding-right:100px; }

@media (min-width:1150px) {
.homeIconArea{ display:none; }
}
/*accessibility*/

.accessibilityControlsArea{ z-index:99999; }
.accessibilityControlsArea .offcanvas-header h5 { color:#000; }
.accessibilityControlsArea .offcanvas-header  svg{ width:38px; height:38px; fill:#000; display:inline-block; }
.accessibilityControlsArea .filterClearBtn { padding:8px 15px; background:#000067; color:#fff; border-radius:7px; }
.accessibilityControlsArea .offcanvasHeading{ font-size:16px; font-weight:400 }
.accessibilityControlsArea button.btnBoxArea{

  padding: 10px 5px;
    border-radius: 8px;
    border: 1px solid #000067;
    text-align: center;
    width: 100%;
    background: var(--white);
    margin-bottom: 10px;
}

.accessibilityControlsArea button.btnBoxArea span{ display:block; font-size:16px; font-weight:500; }
.accessibilityControlsArea button.btnBoxArea svg{ width:48px; height:48px; fill:#000; display:inline-block; }
.accessibilityControlsArea button.btnBoxArea:hover,.accessibilityControlsArea button.btnBoxArea.active{ background:#000067 !important; color:#fff !important; }
.accessibilityControlsArea button.btnBoxArea:hover svg,.accessibilityControlsArea button.btnBoxArea.active svg{ fill:#fff !important; }

.min-h-auto{ min-height:auto !important; }
.pdfImgArea {padding: 20px;
    border: 1px solid #cccccc;
    border-radius: 15px;}
.pdfImgArea img{ width:100%; border-radius: 15px;}

.innerSection .aboutSectionArea .headBoxArea h4{ color:#13519e; font-size:24px; font-weight:700;  }
.innerSection .aboutSectionArea .headBoxArea h4 span{ display:block; color:#000; font-size:18px;margin-bottom:5px; }

.innerSection .aboutSectionArea .visitsBox{ background:#e5f0ff; padding:15px; border-radius:15px; }
.innerSection .aboutSectionArea .visitsBox p{ margin-bottom:10px; }
.innerSection .aboutSectionArea .pAreaPd-b p{ margin-bottom:10px !important; }

.no-js .owl-carousel, .owl-carousel.owl-loaded {
    display: inline-grid;
}

.imgArea-04{ width:150px; }
.imgArea-04 img{ width:100%; }

.color-01{color: #d36806 !important;}

.color-02{color: var(--blue) !important;}


.eventSection{ padding:50px 0; background: #e8e4f7;}
.eventSection .arrowAction-01 .owl-carousel .owl-stage-outer{ margin-bottom:0 !important; }
.eventSection .news-card-custom img{ width: 100%;
    height: 229px;
    object-fit: cover;
    display: block; }
.eventSection .news-content-custom{
    background: #efecfa;
    padding: 15px;
    border: 1px solid #bfb7dc;
}
.eventSection .news-content-custom p {
    margin: 0;
    padding: 0;
    color: #000;
    font-size: 19px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 15px;
}
.eventSection .news-date-custom{ color:#000; }

.eventSection .news-date-custom i{ color:#ff7a00; }


.employee-card {
    width: 100%;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
    transition: all 0.3s ease;
    border: 1px solid #d1d1d1;
    margin-bottom: 25px;
    height: 100%;
    
}


.employee-card  .employee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

/* Top Section */
.employee-card .card-top {
    height: 130px;
    background: #f5f8ff;
    position: relative;
}

.employee-card .card-top::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    width: 80%;
    height: 40px;
    background: #fff;
    border-radius: 50%;
}

/* Dots */
.employee-card .dot-pattern {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 30px;
    height: 30px;
    background-image: radial-gradient(#d4defd 1.5px, transparent 1.5px);
    background-size: 8px 8px;
}

/* Profile Image */
.employee-card .employee-img {
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    z-index: 2;
}

.employee-card .employee-img img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
/*    object-fit: cover;*/
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
}

/* Body */
.employee-card .card-body-custom {
    padding: 40px 20px 5px;
}

.employee-card .card-body-custom h4 {
    text-align: center;
    font-size: 19px;
    font-weight: 700;
    color: #0a1f52;
    margin-bottom: 5px;
}

.employee-card .email {
    text-align: center;
    font-size: 16px;
    color: #677084;
    margin-bottom: 0px;
}

.employee-card .email i {
    margin-right: 5px;
}

.employee-card hr {
    margin: 10px 0;
    border: none;
    border-top: 1px solid #696a6a;
}
/* Information Rows */
.employee-card .info-row {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.employee-card .label {
    display: flex;
    align-items: center;
    min-width: 110px;
    color: #000;
    font-size: 13px;
    font-weight: 600;
}
.employee-card .label span{ font-weight:800; }
.employee-card .label i {
    width: 18px;
    margin-right: 6px;
}

.employee-card .separator {
    margin: 0 10px;
    color: #666;
    font-weight: 600;
}

.employee-card .value {
    flex: 1;
    font-size: 13px;
    color: #1f2937;
    line-height: 1.4;
}

/* Room Badge */
.employee-card .room-badge {
    background: #eef2ff;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
}

/* Extension Badge */
.employee-card .ext-badge {
    background: #13519e;
    color: #fff;
    padding: 2px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}



.innerSection .aboutSectionArea h6.hedingArea {
      position: relative;
    padding-bottom: 0.5rem;
    font-size: 25px;
    margin-bottom: 20px;
    color: #000;
    font-weight: 700;
}
.innerSection .aboutSectionArea h6.hedingArea::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
}
/* Responsive */

.menu-link.active-tab .tab-icon, .menu-link:hover .tab-icon {
    color: #ffffff !important;
}


.menu-link.active-tab {
/*    background: linear-gradient(90deg, #e8f1fc 0%, #f0f6ff 100%);*/
background: #1a6bbf !important;
    color: #fff !important;
    font-weight: 700;
    border-left: 3px solid #1a6bbf;
    padding-left: 17px;
}


.employee-card {
    width: 100%;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
    transition: all 0.3s ease;
    border: 1px solid #d1d1d1;
    margin-bottom: 25px;
    height: 100%; 
}

.innerSection .section-dynamic-table .btn-outline-primary {
    display: inline-block;
    padding: 4px 10px;
    font-size: 13px;
    background-color: #e9f5ff;
    color: #272727;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid #0056a6;
    transition: 0.3s ease;
}

.innerSection .section-dynamic-table .btn-outline-primary:hover {
    background: var(--orange);
    color: #fff;
}
.innerSection .aboutSectionArea .intranetBoxArea {
   
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    width: 100%;
    overflow: hidden;
}
.innerSection .aboutSectionArea .intranetBoxArea a {
    padding: 40px 15px;
    text-transform: uppercase;
      border-radius: 15px;
    font-size: 50px;
        border: 1px solid #13519e;
    display: block;
    text-align: center;
    background: #e9f3ff;
    color: #000;
}

.innerSection .aboutSectionArea .intranetBoxArea a:hover{

  background: #13519e;
    color: #ffffff;
}




.offcanvas.offcanvas-end{ width:600px !important; }


body.invert-mode {
      filter: invert(1) hue-rotate(180deg);
    }

 body.saturated-mode {
    filter: saturate(0.5)!important;
}   

.hide-img-mode img {
    visibility: hidden!important;
}


body.default-cursor-mode,
body.default-cursor-mode * {
  cursor: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg"><path d="M10 6 L10 38 L18 30 L23 42 L29 39 L24 27 L38 27 Z" fill="%23D3D3D3" stroke="%23808080" stroke-width="2"/></svg>') 0 0, auto !important
}

body.default-cursor-mode *:hover {
  cursor: inherit !important
}

body.default-cursor-mode a:hover,
body.default-cursor-mode button:hover,
body.default-cursor-mode [role=button]:hover,
body.default-cursor-mode .pointer:hover,
body.default-cursor-mode input[type=button]:hover,
body.default-cursor-mode input[type=submit]:hover {
  cursor: url("data:image/svg+xml;utf8,<svg width='40' height='40' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path fill='gray' d='M7 11V5.5a1.5 1.5 0 1 1 3 0V11h1V3.5a1.5 1.5 0 1 1 3 0V11h1V6.5a1.5 1.5 0 1 1 3 0V14l-.002.058A5 5 0 0 1 13.05 19H10a6 6 0 0 1-6-6v-2a1 1 0 1 1 2 0v0Z'/></svg>") 0 0, pointer !important
}



body.highlight-links-mode a,
body.highlight-links-mode a span, 
body.highlight-links-mode a p,
body.highlight-links-mode a h1,
body.highlight-links-mode a h2,
body.highlight-links-mode a h3,
body.highlight-links-mode a h6
{ background:#000!important; color:#ff0 !important; }
body.highlight-links-mode a img{
    filter: invert(78%) sepia(169%) saturate(274%) hue-rotate(358deg) brightness(98%) contrast(199%);
}
body.highlight-links-mode a svg{ fill:#ff0 !important; }


/*@media only screen and (max-width: 1450px) {
.main-nav .nav-link { font-size:12px; }


}
*/

@media only screen and (max-width: 1500px) {
.main-nav .nav-link {
    padding: 8px 8px !important;

}

}


@media only screen and (max-width: 1400px) {
.main-nav .nav-link {font-size: 14px;} 
.card-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}

@media only screen and (max-width: 1300px) {
.main-nav .nav-link {font-size: 13px;} 
.main-nav .nav-link {padding: 8px 7px !important;}
}



@media only screen and (max-width: 1200px) {
.main-nav .nav-link {font-size: 12px;} 
.innerSection .col-lg-3.position-relative{ display:none; }
.innerSection .aboutSectionArea{ min-height:auto; }
.card-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}

@media only screen and (max-width: 992px) {
.lft-side{ display:none; }
.mid-h-auto{ height:auto !important; }


}

@media only screen and (max-width: 767px) {
.site-header .pssiLogoArea,.search-input-wrap{ display:none; }
.site-header .logo {margin: auto;width: 80px; margin-bottom: 10px;}
.site-header .companyNameArea h2 {font-size: 22px;}
.site-header .companyNameArea h2 span {font-size: 17px;}
.site-header .companyNameArea h3 {font-size: 13px;}
.site-header .companyNameArea h3 span {font-size: 15px;}
.innerSection .aboutSectionArea {padding: 25px 10px; }
.aboutSectionArea .directorBoxArea .directorBriefBox {margin: -50px 0px 0px 0px;}
.tab-style-two-items nav .nav-tabs button {padding: 10px 10px;font-size: 12px;}
.card-grid{grid-template-columns:repeat(1,minmax(0,1fr));}

}


@media only screen and (max-width: 576px) {
.innerSection .aboutSectionArea .photos-card.staffclubImg .photos-img {
     height: auto; 
}
}